home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Lights_1_Up.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  838 b   |  25 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': '1 Up Lights preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_Lights():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Lights': ((1, (200, 200, 200), (0, 14, 34, 300, 50, 25, 20, 0)), (0, (200, 200, 70), (-70, 10, 100, 245, 45, 1, 100, 28)), (0, (200, 70, 70), (10, 200, 100, 28, 0, 89, 100, 45)), (0, (0, 70, 10), (200, 65, 28, 45, 100, 89, 100, 0)), (0, (0, 10, 65), (200, 28, 45, 1, 0, 1, 90, 0))),
  19.         'SelButton': 0,
  20.         'Darkness': 60,
  21.         }
  22.  
  23. def Do(Environment):
  24.     App.Do(Environment, 'Lights', Preset_Lights())
  25.